home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Misc / Crossword / Source / LeapfrogSquare.h < prev    next >
Text File  |  1992-10-11  |  471b  |  25 lines

  1. /*
  2.  
  3. File LeapfrogSquare.h
  4.  
  5. These are the squares used for leapfrog search.  When backjumping past a square, the square remembers its current value and tries that value first the next time through.
  6.  
  7. */
  8.  
  9. #import "BackjumpSquare.h"
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface LeapfrogSquare:BackjumpSquare
  16. {
  17.     char    last;
  18. }
  19.  
  20. - initPuzzle: (id) thePuzzle  cell: (id) theCell;
  21. - show;
  22. - (char) chooseLetter;
  23. - update;
  24.  
  25. @end